home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 076-100 / disk_084 / ed / amiga.c < prev    next >
Text File  |  1992-05-06  |  169b  |  15 lines

  1. /*
  2.  *  Fake the library routines not supplied on the Amiga.  They really aren't
  3.  *  very important anyway...
  4.  */
  5.  
  6. signal ()
  7. {
  8.     return (-1);
  9. }
  10.  
  11. fork ()
  12. {
  13.     return (-1);
  14. }
  15.